Allocate size bytes of memory and return the address of the
first byte.
INPUTS
size
How much memory to allocate.
RESULT
A pointer to the allocated memory or NULL. If you don't need the
memory anymore, you can pass this pointer to free(). If you don't,
the memory will be freed for you when the application exits.
Moved #include into first column to allow makedepend to see it.
23.10.1996 aros
Use AROS_ALIGN() to align pointers
19.10.1996 aros
Moved all ANSI C function to here and wrote all neccessary header files.
Now we have a real basis for our own C lib.
Added the functions malloc(), free() and strcasecmp()
Made all functions ANSI C compliant